home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Resources
/
Developer & Web Development Tools
/
Inno Setup 5.2.3
/
isetup-5.2.3.exe
/
{app}
/
Examples
/
MyDll
/
Delphi
/
MyDll.dpr
Wrap
Text File
|
2003-04-13
|
224b
|
15 lines
library MyDll;
uses
Windows;
procedure MyDllFunc(hWnd: Integer; lpText, lpCaption: PChar; uType: Cardinal); stdcall;
begin
MessageBox(hWnd, lpText, lpCaption, uType);
end;
exports MyDllFunc;
begin
end.